home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_12_05
/
allison
/
tcursor.cpp
< prev
next >
Wrap
C/C++ Source or Header
|
1994-03-23
|
311b
|
19 lines
LISTING 8 - Illustrates cursor control functions
// tcursor.cpp: Changes the shape of the cursor
#include <stdio.h>
#include "cursor.h"
main()
{
Cursor::block();
getchar();
Cursor::line();
getchar();
Cursor::off();
getchar();
Cursor::line();
return 0;
}